Python recursively find files with specific ext

28

import glob

files = glob.glob(path + "/**/*.txt", recursive = True)

Comments

Submit
0 Comments